home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr23 / tlxtw204.zip / TLXTWHLP.SLT < prev    next >
Text File  |  1995-01-21  |  695b  |  27 lines

  1. // tlxtwhlp.slt = Alt-F1
  2. // Runs the editor defined in Telix's Setup (Alt-O,F).
  3. ///////////////////////////////////////////////////////////////////////////////
  4. main()
  5. {
  6.     str file[64];
  7.     int osk;
  8.  
  9.     osk=_scr_chk_key;
  10.     _scr_chk_key=0;
  11.     strcat (file, _script_dir);
  12.     if(subchr(_script_dir,strlen(_script_dir)-1)!='\') strcat(file, "\");
  13.     strcat (file, "tlxtwhlp.txt");
  14.     if (filefind(file, 0) < 1) {
  15.       strupper(file);
  16.       printsc("^M^JUnable to find help file ");
  17.       prints( file );
  18.       _scr_chk_key=osk;
  19.       return 0;
  20.     }
  21.     inschrs(" ", file, 0, 1 );
  22.     cursor_onoff(1);
  23.     run(_editor, file);
  24.     _scr_chk_key=osk;
  25.     return 1;
  26. }
  27.